home *** CD-ROM | disk | FTP | other *** search
/ Mac Format 1995 June / MacFormat 25.iso / Shareware City / Developers / OutOfPhase1.1 Source / OutOfPhase Folder / SymbolicPitch.h < prev    next >
Text File  |  1994-03-31  |  608b  |  26 lines

  1. /* SymbolicPitch.h */
  2.  
  3. #ifndef Included_SymbolicPitch_h
  4. #define Included_SymbolicPitch_h
  5.  
  6. /* SymbolicPitch module depends on */
  7. /* MiscInfo.h */
  8. /* Audit */
  9. /* Debug */
  10. /* Definitions */
  11. /* Frequency */
  12. /* DataMunging */
  13. /* Memory */
  14. /* NoteObject */
  15. /* Numbers */
  16. /* SymbolicIsItInThere */
  17.  
  18. /* convert a pitch number into a heap allocated string describing it */
  19. char*                        NumericPitchToString(short Pitch, unsigned long SharpFlatThing);
  20.  
  21. /* convert the string into a pitch and sharp/flat word. */
  22. void                        StringToNumericPitch(char* String, short* Pitch,
  23.                                     unsigned long* SharpFlatThing);
  24.  
  25. #endif
  26.